ComponentOne FinancialChart for WPF
C1.WPF Namespace / C1MessageBox Class / Show Method / Show(String,String,C1MessageBoxButton,C1MessageBoxIcon,Action<MessageBoxResult>) Method
The text to display as a message.
The title bar caption.
A C1MessageBoxButton value that specifies which buttons to display.
A C1MessageBoxIcon value that specifies the icon to display.
An Action which is called with the result of the message box.



In This Topic
    Show(String,String,C1MessageBoxButton,C1MessageBoxIcon,Action<MessageBoxResult>) Method
    In This Topic
    Displays a message box that has a message, title bar caption, button and icon; and calls back with the result.
    Syntax
    'Declaration
     
    
    Public Overloads Shared Sub Show( _
       ByVal message As String, _
       ByVal caption As String, _
       ByVal button As C1MessageBoxButton, _
       ByVal icon As C1MessageBoxIcon, _
       ByVal callback As Action(Of MessageBoxResult) _
    ) 
    'Usage
     
    
    Dim message As String
    Dim caption As String
    Dim button As C1MessageBoxButton
    Dim icon As C1MessageBoxIcon
    Dim callback As Action(Of MessageBoxResult)
     
    C1MessageBox.Show(message, caption, button, icon, callback)

    Parameters

    message
    The text to display as a message.
    caption
    The title bar caption.
    button
    A C1MessageBoxButton value that specifies which buttons to display.
    icon
    A C1MessageBoxIcon value that specifies the icon to display.
    callback
    An Action which is called with the result of the message box.
    See Also